home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen… 1994 February Supplement / ARPL-Feb-94-Supplement-PowerPC.iso / 3rd Party PowerPC Demo Apps / Diehl Graphsoft MiniCad-E / MiniCad 5 Demo (Click Me!) / MiniCad 5 Demo (Click Me!).rsrc / STR#_7027.txt < prev    next >
Encoding:
Text File  |  1994-01-18  |  1.4 KB  |  37 lines

  1. NewField(format, fieldName, fieldValue : STRING; numericForm, accuracy : INTEGER);
  2.  
  3. Adds a new field to a format. Creates a new format if one does not exist by that name.
  4.  
  5. SetRecord(h : Handle; theFormat : STRING);
  6.  
  7. Assigns a record to the object that is specified by h and the type of record by theFormat.
  8.  
  9. SetRField(h : Handle; format, field, value : STRING);
  10.  
  11. Assigns a field a value of a previously created record assigned to an object.
  12.  
  13. Eval(h : Handle; searchCriteria : STRING) : REAL;
  14.  
  15. Given a search criteria, Eval will return the value of that criteria.
  16.  
  17. EvalStr(h : Handle; searchCriteria : STRING) : STRING;
  18.  
  19. Given a search criteria, EvalStr will return the string result of that criteria.
  20.  
  21. NumRecords(ObjectHandle : HANDLE) : INTEGER;
  22.  
  23. Returns the number of records attached to the object connected to ObjectHandle. If ObjectHandle = nil, returns the number of records in the active drawing.
  24.  
  25. NumFields(RecordHandle : HANDLE) : INTEGER;
  26.  
  27. Returns the number of fields in the record connected to RecordHandle.
  28.  
  29. GetRecord(ObjectHandle : HANDLE; Index : INTEGER) : HANDLE;
  30.  
  31. Returns a handle to the indexth record attached to the object connected to ObjectHandle. If ObjectHandle = nil, returns the indexth record in the drawing.
  32.  
  33. GetFldName(RecordHandle : HANDLE, Index : INTEGER) : STRING;
  34.  
  35. Returns the name of the indexth field attached to the record connected to RecordHandle.
  36.  
  37.